projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a698dc
)
(checkdoc-find-error): Use get-file-buffer instead of get-buffer.
author
Markus Rost
<rost@math.uni-bielefeld.de>
Thu, 7 Nov 2002 16:52:04 +0000
(16:52 +0000)
committer
Markus Rost
<rost@math.uni-bielefeld.de>
Thu, 7 Nov 2002 16:52:04 +0000
(16:52 +0000)
lisp/emacs-lisp/checkdoc.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/checkdoc.el
b/lisp/emacs-lisp/checkdoc.el
index 3720984196c87c31e8a27a8711ace0ac6f8428c8..334a7995bcf90f528076bb544e6962c2eed62936 100644
(file)
--- a/
lisp/emacs-lisp/checkdoc.el
+++ b/
lisp/emacs-lisp/checkdoc.el
@@
-2586,9
+2586,9
@@
This function will not modify `match-data'."
(if (looking-at "\\(\\(\\w+\\|\\s_\\)+\\.el\\):\\([0-9]+\\):")
(let ((l (string-to-int (match-string 3)))
(f (match-string 1)))
- (if (not (get-buffer f))
+ (if (not (get-
file-
buffer f))
(error "Can't find buffer %s" f))
- (switch-to-buffer-other-window (get-buffer f))
+ (switch-to-buffer-other-window (get-
file-
buffer f))
(goto-line l))))
(defun checkdoc-buffer-label ()